home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
estenw_1
/
mainmenu.frm
< prev
next >
Wrap
Text File
|
1998-04-25
|
4KB
|
167 lines
VERSION 5.00
Begin VB.Form Menu
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ClientHeight = 9000
ClientLeft = 0
ClientTop = 0
ClientWidth = 12000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
Picture = "MainMenu.frx":0000
ScaleHeight = 9000
ScaleWidth = 12000
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
WindowState = 2 'Maximized
Begin VB.Timer Timer1
Interval = 8400
Left = 15
Top = 0
End
Begin VB.Image newgame
Height = 450
Left = 4560
MouseIcon = "MainMenu.frx":75742
MousePointer = 99 'Custom
Picture = "MainMenu.frx":7600C
Top = 2025
Width = 3000
End
Begin VB.Image saveactive
Height = 450
Left = 4560
MouseIcon = "MainMenu.frx":77BBE
MousePointer = 99 'Custom
Picture = "MainMenu.frx":78488
Top = 2760
Visible = 0 'False
Width = 3000
End
Begin VB.Image saveinactive
Height = 450
Left = 4560
MousePointer = 99 'Custom
Picture = "MainMenu.frx":7A03A
Top = 2760
Width = 3000
End
Begin VB.Image restoreactive
Height = 450
Left = 4560
MouseIcon = "MainMenu.frx":7BBEC
MousePointer = 99 'Custom
Picture = "MainMenu.frx":7C4B6
Top = 3480
Visible = 0 'False
Width = 3000
End
Begin VB.Image restoreinactive
Height = 450
Left = 4560
MousePointer = 99 'Custom
Picture = "MainMenu.frx":7E068
Top = 3480
Width = 3000
End
Begin VB.Image OptionsButton
Height = 450
Left = 4560
MouseIcon = "MainMenu.frx":7FC1A
MousePointer = 99 'Custom
Picture = "MainMenu.frx":804E4
Top = 4725
Width = 3000
End
Begin VB.Image exit
Height = 450
Left = 4560
MouseIcon = "MainMenu.frx":82096
MousePointer = 99 'Custom
Picture = "MainMenu.frx":82960
Top = 7530
Width = 3000
End
End
Attribute VB_Name = "Menu"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub view_Click()
End
End Sub
Private Sub Image2_Click()
Form1.Visible = False
Form2.Visible = True
End Sub
Private Sub Image7_Click()
Form3.Visible = True
End Sub
Private Sub exit_Click()
End
End Sub
Private Sub Form_Load()
OLEform.Domotozje.DoVerb
End Sub
Private Sub newgame_Click()
CharGen.Show
CharGen.Visible = True
Unload Menu
End Sub
Private Sub Options_Click()
main.Visible = False
Options.Visible = True
End Sub
Private Sub OptionsButton_Click()
Options.Visible = True
End Sub
Private Sub Timer1_Timer()
OLEform.Domotozje.DoVerb
End Sub
Private Sub Timer2_Timer()
If Timer2.Interval = 1 Then
CAL
Line1.Visible = True And Line2.Visible = True
ElseIf Timer2.Interval = 3 Then
CAL
Line3.Visible = True And Line4.Visible = True
ElseIf Timer2.Interval = 5 Then
CAL
Line5.Visible = True And Line6.Visible = True
ElseIf Timer2.Interval = 7 Then
CAL
Line7.Visible = True And Line8.Visible = True
End If
End Sub